home *** CD-ROM | disk | FTP | other *** search
/ Power Hacker 2003 / Power_Hacker_2003.iso / Exploit and vulnerability / w00w00 / sectools / dsniff / record.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-05-16  |  413 b   |  25 lines

  1. /*
  2.   record.h
  3.   
  4.   Record interface.
  5.   
  6.   Copyright (c) 2000 Dug Song <dugsong@monkey.org>
  7.   
  8.   $Id: record.h,v 1.1 2000/05/16 17:31:15 dugsong Exp $
  9. */
  10.  
  11. #ifndef RECORD_H
  12. #define RECORD_H
  13.  
  14. int    record_init(char *file);
  15.  
  16. int    record(u_long src, u_long dst, int proto, u_short sport, u_short dport,
  17.            char *name, u_char *buf, int len);
  18.  
  19. void    record_dump(void);
  20.  
  21. void    record_close(void);
  22.  
  23. #endif /* RECORD_H */
  24.  
  25.